I am trying to create a batch file to copy a folder from the server to a single users desktop. copy -SERVER-folder-folder-documents-audits %userprofile%- ...
I am writing a batch script that does a myriad of things. The one part I am stuck on is copying files/file structure from a location to my final image.
To copy a folder using a batch file in Windows, you can use the xcopy command. Here's a simple example: “xcopy source_path destination_path /e /i /h /k /
This batch command is used for copying files from one location to the other. Syntax: Copy [source] [destination] The files will be copied from source to ...